home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 59 / Cine Live 59.iso / pc / Data / Interface / f36.k < prev    next >
Encoding:
Text File  |  2002-04-10  |  4.7 KB  |  235 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000142; 
  4.     release Editor:
  5.         IOWindow is {$000000A0,$00000030,$00000267,$000002CD,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$000000A9,$00000047,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMusic2,
  16.         ofond3,
  17.         oScroller4,
  18.         ofilmo_imp6,
  19.         ofilmo_retour7,
  20.         ofilmo_somm8,
  21.         ortf9
  22.     ];
  23.     Events is [
  24.         cOnscreenEvent
  25.         with Flags is $00000004; 
  26.             Commands is [
  27.                 cRunCommand
  28.                 with Flags is $00000004; Target is oMusic2; Rewind is true; end
  29.             ];
  30.         end,
  31.         cKeyboardEvent
  32.         with Value is "+"; 
  33.             Commands is [
  34.                 cSetVolumeCommand
  35.                 with Flags is $00000004; Mode is ExecuteHigher; end
  36.             ];
  37.         end,
  38.         cKeyboardEvent
  39.         with Value is "-"; 
  40.             Commands is [
  41.                 cSetVolumeCommand
  42.                 with Mode is ExecuteLower; end
  43.             ];
  44.         end,
  45.         cKeyboardEvent
  46.         with Flags is $00000004; Value is "m"; 
  47.             Commands is [
  48.                 cRunCommand
  49.                 with Flags is $00000004; Target is oMusic2; Mode is Toggle; Rewind is true; end
  50.             ];
  51.         end
  52.     ];
  53. end;
  54.  
  55. object oMusic2 is cSound
  56. with 
  57.     Flags is $00000140; 
  58.     Name is "Music"; 
  59.     
  60.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  61.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  62.     Looping is true; 
  63.     URL is "../Sons/1.mp3"; 
  64.     
  65. end;
  66.  
  67. object ofond3 is cImage
  68. with 
  69.     Flags is $00000150; 
  70.     Name is "fond"; 
  71.     Enabled is false; 
  72.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  73.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  74.     
  75.     URL is "../Images/36.jpg"; 
  76.     
  77.     
  78. end;
  79.  
  80. object oScroller4 is cScroller
  81. with 
  82.     Name is "Scroller"; 
  83.     Clipping is true; Cursor is oFingerCursor; 
  84.     X is 510; Y is 104; 
  85.     Width is 256; Height is 438; 
  86.     
  87.     Vertical is oVertical_Macintosh_Color_ScrollBar; 
  88.     Elements is [
  89.         oimage_biographie5
  90.     ];
  91.     Events is [
  92.         cMouseMovedEvent
  93.         with 
  94.             Commands is [
  95.                 cScrollCommand
  96.                 with Target is oTargetSelf; end
  97.             ];
  98.         end
  99.     ];
  100. end;
  101.  
  102. object oimage_biographie5 is cImage
  103. with 
  104.     Name is "image biographie"; 
  105.     
  106.     X is 149; 
  107.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  108.     
  109.     URL is "../Images/n36.jpg"; 
  110.     
  111.     
  112. end;
  113.  
  114. object ofilmo_imp6 is cImage
  115. with 
  116.     Flags is $00000150; 
  117.     Name is "filmo imp"; 
  118.     Shown is false; Cursor is oFingerCursor; 
  119.     X is 475; Y is 573; 
  120.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  121.     
  122.     URL is "../Images/actor%20imprim.jpg"; 
  123.     
  124.     
  125.     Events is [
  126.         cMouseEnterEvent
  127.         with Flags is $00000004; 
  128.             Commands is [
  129.                 cShowCommand
  130.                 with Flags is $00000004; Target is oTargetSelf; end
  131.             ];
  132.         end,
  133.         cMouseLeaveEvent
  134.         with Flags is $00000004; 
  135.             Commands is [
  136.                 cShowCommand
  137.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  138.             ];
  139.         end,
  140.         cMouseUpEvent
  141.         with Flags is $00000004; Flag is true; 
  142.             Commands is [
  143.                 cPrintCommand
  144.                 with Flags is $00000004; Target is ortf9; end
  145.             ];
  146.         end
  147.     ];
  148. end;
  149.  
  150. object ofilmo_retour7 is cImage
  151. with 
  152.     Flags is $00000150; 
  153.     Name is "filmo retour"; 
  154.     Shown is false; Cursor is oFingerCursor; 
  155.     X is 321; Y is 573; 
  156.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  157.     
  158.     URL is "../Images/actor%20retour.jpg"; 
  159.     
  160.     
  161.     Events is [
  162.         cMouseEnterEvent
  163.         with Flags is $00000004; 
  164.             Commands is [
  165.                 cShowCommand
  166.                 with Flags is $00000004; Target is oTargetSelf; end
  167.             ];
  168.         end,
  169.         cMouseLeaveEvent
  170.         with Flags is $00000004; 
  171.             Commands is [
  172.                 cShowCommand
  173.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  174.             ];
  175.         end,
  176.         cMouseUpEvent
  177.         with Flags is $00000004; Flag is true; 
  178.             Commands is [
  179.                 cRunCommand
  180.                 with Flags is $00000004; Target is oMusic2; Mode is Clear; Rewind is true; end,
  181.                 cBackCommand
  182.                 with Flags is $00000004; end
  183.             ];
  184.         end
  185.     ];
  186. end;
  187.  
  188. object ofilmo_somm8 is cImage
  189. with 
  190.     Flags is $00000150; 
  191.     Name is "filmo somm"; 
  192.     Shown is false; Cursor is oFingerCursor; 
  193.     X is 629; Y is 573; 
  194.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  195.     
  196.     URL is "../Images/actor%20somm.jpg"; 
  197.     
  198.     
  199.     Events is [
  200.         cMouseEnterEvent
  201.         with Flags is $00000004; 
  202.             Commands is [
  203.                 cShowCommand
  204.                 with Flags is $00000004; Target is oTargetSelf; end
  205.             ];
  206.         end,
  207.         cMouseLeaveEvent
  208.         with Flags is $00000004; 
  209.             Commands is [
  210.                 cShowCommand
  211.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  212.             ];
  213.         end,
  214.         cMouseUpEvent
  215.         with Flags is $00000004; Flag is true; 
  216.             Commands is [
  217.                 cBrowseCommand
  218.                 with Flags is $00000004; URL is "sommaire.k"; end
  219.             ];
  220.         end
  221.     ];
  222. end;
  223.  
  224. object ortf9 is cRTFText
  225. with 
  226.     Flags is $00000150; 
  227.     Name is "rtf"; 
  228.     Enabled is false; Shown is false; 
  229.     AdjustX is AlignToLeft; AdjustY is AlignToTop; 
  230.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetDataHeight; 
  231.     
  232.     URL is "../Textes/36.rtf"; 
  233.     
  234.     Antialiased is true; 
  235. end;